home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 2 / Meeting Pearls Vol. II (1995)(GTI - Schatztruhe)[!].iso / Pearls / midi / Midi2TeX / src / smakefile < prev    next >
Makefile  |  1994-04-08  |  895b  |  37 lines

  1. # SMakefile for Midi2TeX
  2. # Ready for compilation with SAS-C 6.51
  3. #
  4.  
  5. # Definition of the C Compiler/Assembler/Linker
  6. CC = sc
  7. LN = sc link
  8. AS = sc asm
  9.  
  10. # Compiler-Options
  11. CCFLAGS = data=far code=far absfuncpointer 
  12.  
  13. # Additional Libraries:
  14. LIB = lib=lib:scm.lib
  15.  
  16. # Linker-Options
  17. LNFLAGS = $(LIB)
  18.  
  19. all: Midi2TeX
  20.  
  21. Midi2TeX: tp_debug.o tp_decl.o tp_heap1.o tp_m2t16.o tp_m2tf4.o tp_midi.o tp_misc.o
  22.       $(LN) $(LNFLAGS) tp_debug.o tp_decl.o tp_heap1.o tp_m2t16.o tp_m2tf4.o tp_midi.o tp_misc.o to=Midi2TeX
  23. tp_debug.o: tp_debug.c
  24.       $(CC) $(CCFLAGS) tp_debug.c 
  25. tp_decl.o: tp_decl.c
  26.       $(CC) $(CCFLAGS) tp_decl.c
  27. tp_heap1.o: tp_heap1.c
  28.       $(CC) $(CCFLAGS) tp_heap1.c
  29. tp_m2t16.o: tp_m2t16.c
  30.       $(CC) $(CCFLAGS) tp_m2t16.c
  31. tp_m2tf4.o: tp_m2tf4.c
  32.       $(CC) $(CCFLAGS) tp_m2tf4.c
  33. tp_midi.o: tp_midi.c
  34.       $(CC) $(CCFLAGS) tp_midi.c
  35. tp_misc.o: tp_misc.c
  36.       $(CC) $(CCFLAGS) tp_misc.c
  37.